home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19961006-19970104 / 000289_news@columbia.edu _Tue Dec 10 13:43:22 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.8.3/8.8.3) with ESMTP id NAA26764 for <kermit.misc@watsun.cc.columbia.edu>; Tue, 10 Dec 1996 13:43:22 -0500 (EST)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.8.3/8.8.3) id NAA26047 for kermit.misc@watsun; Tue, 10 Dec 1996 13:43:21 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: ASCII characters and input echo on
  8. Date: 10 Dec 1996 18:42:27 GMT
  9. Organization: Columbia University
  10. Lines: 30
  11. Message-ID: <58kauj$emu$1@apakabar.cc.columbia.edu>
  12. References: <58k9hq$rlc@spk41.usace.mil>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <58k9hq$rlc@spk41.usace.mil>,
  16.  <enhwco@enhwco.saj.usace.army.mil> wrote:
  17. : I am using ckermit to call up a computer and download data using a script
  18. : file with SET INPUT ECHO ON.
  19. :
  20. : this allows the user to be able to see the script file go through the
  21. : different menus and thus be able to see the progress of the downloading
  22. : process. When these menus appear, they will have a solid line border around
  23. : them, consisting of extended ascii characters. but instaed where horizontal
  24. : lines shouls appear, qqqqqqqqqqq appears instead; vertical line segments are
  25. : represented by x, left upper corners are represented by l , and so on. Can
  26. : anyone advise me as to how to correct this problem? Thank you.
  27. : P.S. The script file session does not go into connect mode; when term
  28. : emulation vt220 is used and ckermit is in connect mode; everything appears
  29. : as it should.
  30. :
  31. You did not say which version of Kermit you are using on what platform and
  32. operating system.  However, it is true in general -- and noted in the
  33. documentation -- that Kermit's terminal emulator is NOT active during
  34. script processing.  In some cases, you can still have your screen formatted
  35. more or less as expected while echoing script material ("set input echo on")
  36. if your window or console driver emulates the type of terminal that the
  37. remote host is sending escape sequences for.
  38.  
  39. If that is not possible in your case, then perhaps it would be better to
  40. "set input echo off" and simply print ("echo") informative progress messages
  41. for the user.
  42.  
  43. - Frank